Applet Locator Optional Parameters
When passing the applet locator data structure to theJMNewAppletLocatorFromInfo
function, you can provide optional parameters to be passed to the applet for execution. Such parameters are defined by theJMLibOptionalParams
data type.
struct JMLIBOptionalParams { char* fParamName; char* fParamValue; };
Field Description
fParamName
- The name of the optional parameter (as found in the
NAME
field of a<PARAM>
applet tag).fParamValue
- The value of the optional parameter (as found in the
VALUE
field of a<PARAM>
applet tag).